Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

635875 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/151 - Type Writer Effect/js

index.js cody/swapnilsparsh/30DaysOfJavaScript/151 - Type Writer Effect/js/index.js
162 Views
0 Comments

var mydiv = document.getElementById("mydiv");
var mybutton = document.getElementById("mybutton");

const typewrite = () =>{
var text = document.getElementById("inputText").value;
mydiv.textContent="";
for(let i=0 ; i<text.length ; i++){